home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld: Complete Mac Interactive
/
Macworld Complete Mac Interactive CD)(1994).iso
/
The Best of BMUG
/
Utilities
/
Text and Speech
/
Alpha.5.76
/
Tcl
/
UserCode
/
smart.tcl
< prev
next >
Wrap
Text File
|
1994-03-08
|
660b
|
43 lines
set smartQuotes 1
proc dum {} {
beginningOfLine
}
proc smartDQuote {} {
global smartQuotes
if {!$smartQuotes} { insertText {"}; return }
if {[leftQ]} {
insertText {``}
} else {
insertText {''}
}
}
ascii 0x22 <s> smartDQuote Tex
proc smartQuote {} {
global smartQuotes
if {!$smartQuotes} { insertText {'}; return }
if {[leftQ]} {
insertText {`}
} else {
insertText {'}
}
}
ascii 0x27 smartQuote Tex
proc leftQ {} {
if {[getPos] == 0} {return 1};
set q [lookAt [expr [getPos]-1]]
case $q in {
{\t} {return 1}
{(} {return 1}
{\{} {return 1}
{[} {return 1}
{<} {return 1}
{\ } {return 1}
{\r} {return 1}
}
return 0
}